Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632542 Views

Latest files of /cody/solygambas/html-css-javascript-projects/084-fluid image lightbox

style.css cody/solygambas/html-css-javascript-projects/084-fluid image lightbox/style.css
126 Views
0 Comments
@import url("https://fonts.googleapis.com/css2?family=Sacramento&display=swap");

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

index.html cody/solygambas/html-css-javascript-projects/084-fluid image lightbox/index.html
320 Views
0 Comments
<!-- Based on Fluid Image Pop Up JavaScript Tutorial by Simo Edwin - Dev Ed (2020)
see: https://www.youtube.com/watch?v=4SQXOA8Z-lo -->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
script.js cody/solygambas/html-css-javascript-projects/084-fluid image lightbox/script.js
203 Views
0 Comments
const modal = document.querySelector(".modal");
const previews = document.querySelectorAll(".gallery img");
const original = document.querySelector(".full-img");
const caption = document.querySelector(".caption");

previews.forEach((preview) => {
preview.addEventListener("click", () => {
modal.classList.add("open");